home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / AudioApps / Resound / StringTable.m < prev    next >
Text File  |  1992-12-20  |  216b  |  21 lines

  1.  
  2. #import "StringTable.h"
  3. #import "Imports.h"
  4.  
  5.  
  6. @implementation StringTable
  7.  
  8. - ChangeString:(char *) ThisString
  9. {
  10.     strcpy (String,ThisString);
  11.     return self;
  12. }
  13.  
  14. - (char *) ReturnString
  15. {
  16.     return String;
  17. }
  18.  
  19.  
  20. @end
  21.